home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 6
/
CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso
/
cucd
/
prog
/
dopussdk
/
include
/
dopus
/
bufferedio.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-08-28
|
652b
|
28 lines
#ifndef _DOPUS_BUFIO
#define _DOPUS_BUFIO
/*****************************************************************************
Buffered IO
*****************************************************************************/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef DOS_DOS_H
#include <dos/dos.h>
#endif
void CloseBuf(APTR file);
long ExamineBuf(APTR file,struct FileInfoBlock *fib);
BPTR FHFromBuf(APTR file);
void FlushBuf(APTR file);
APTR OpenBuf(char *name,long mode,long buffer_size);
long ReadBuf(APTR file,char *data,long size);
long SeekBuf(APTR file,long offset,long mode);
long WriteBuf(APTR file,char *data,long size);
#endif